home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac 1993 September / clonecd / September 93.img / Archives / Decoration / Screensavers / Screen Savers / TwilightZone / source / globals.c < prev    next >
Text File  |  1992-06-01  |  684b  |  30 lines

  1. /*-------------------------------------------------------------------------------------
  2.  *
  3.  * Simple Sample Application Framework
  4.  *
  5.  * ©1991 Apple Computer
  6.  *
  7.  -------------------------------------------------------------------------------------*/
  8. /*
  9.  * globals.c -- repository for global variables
  10.  *
  11.  * change history:
  12.  *
  13.  * SJF        11/6/91        1.0d1        initial coding
  14.  *
  15.  */
  16.  
  17. #include "const.h"
  18. #include "mytypes.h"
  19.  
  20. /* configuration flags */
  21.  
  22. Boolean    gHasWaitNextEvent;        // true if we have waitnextevent available
  23.  
  24. /* action flags */
  25.  
  26. Boolean    gDone;                    // application should terminate when set
  27. Boolean    gInBackground;            // true if application is in the background
  28.  
  29. RgnHandle gCursorRgn;
  30.